Constructors
Constructors are implicitly called when we define objects
of their classes:
Point apoint;
// Point::Point()
Point bpoint(12, 34);
// Point::Point(const int, const int)